home *** CD-ROM | disk | FTP | other *** search
/ Family Forum 254 / SOMC Family Forum 254 - Disc 1.iso / FBPRO97 / UNZIPLEG.BAT < prev    next >
DOS Batch File  |  1995-11-18  |  722b  |  28 lines

  1. @echo off
  2. if %1!==! goto needparm
  3. if not exist %1*.* goto needparm
  4.  
  5. pkunzip -d %1
  6. goto end
  7.  
  8. :needparm
  9. echo.
  10. echo  UNZIPLEG will restore the league files backed up with the ZIPLEG utility, 
  11. echo  using PKWare's PKUNZIP file decompression software.  You must have the 
  12. echo  PKUNZIP (version 2.0 or higher) program in your computer's file search path.
  13. echo.
  14. echo  The proper syntax is:
  15. echo.
  16. echo     UNZIPLEG ZIPFILE
  17. echo.
  18. echo     ZIPFILE is the name of the ZIP file you wish to restore. 
  19. echo.
  20. echo  Example:  UNZIPLEG A:NFLBAK
  21. echo.
  22. echo  will unzip league files contained in NFLBAK.ZIP from drive A: to your game
  23. echo  directory.
  24. echo.
  25. echo  use ZIPLEG to zip-up the league files.
  26. echo.
  27. :end
  28.